Lab Overview

Strain gage installed on aluminum beam (Fig. 8)
Aluminum beam in tension at max mass (Fig. 11)
Honeycomb beam with weighted tension (Fig. 14)

Procedure & Methodology

Each beam's dimensions and mass were measured five times and averaged. The aluminum beam was prepared per Vishay instructions: surface degreased, sanded (320 then 400 grit), conditioned with M-Prep Conditioner A, neutralized, and dried. The strain gage was positioned using tape transfer and bonded with M-Bond 200 adhesive and catalyst. Leads were soldered to bondable terminals and connected via banana plug to the digital multimeter.

The beam was clamped to the edge of the workbench in a cantilever (“diving board”) configuration. The resting resistance was recorded as the zero reference, then 1 kg, 2 kg, and 3 kg masses were hung from the free end, with a reading taken at each load. The beam was then flipped to put the gage in compression and the mass sequence repeated. The entire procedure was repeated for the Nomex honeycomb beam using its pre-installed gage. Strain was computed as ε = (ΔR/R) / GF; stress was computed from beam bending theory (σ = My/I for the aluminum; σ = M/(h·t_f·b) for the sandwich beam); Young's modulus followed from E = σ/ε.

Installation chemicals and tools (Fig. 4a/4b)
Aluminum beam in compression (Fig. 12)
Honeycomb beam in compression (Fig. 16)

Results & Analysis

Strain vs Load — both beams (Fig. 17)
Stress vs Strain — aluminum (Fig. 18)
Stress vs Strain — honeycomb (Fig. 19)

MATLAB Code

Two scripts were used: one to plot strain vs. load for both beams, and one to compute and plot stress vs. strain using measured beam geometry and bending theory. Below is a representative excerpt; full scripts are Lab2_Main.m and Lab2_Main_stress_strain.m.

% Strain from resistance change and gage factor
load = [0 1 2 3];  % kg
GF   = 2;          % gage factor

al_strain_T = [0  0.000354  0.000699  0.00104];   % aluminum tension
al_strain_C = [0 -0.000350 -0.000699 -0.00105];   % aluminum compression
hc_strain_T = [0  0.000429  0.000861  0.00129];   % CFRP tension
hc_strain_C = [0 -0.000433 -0.000445 -0.00131];   % CFRP compression

% Aluminum bending stress: sigma = My/I
F    = load * 9.81;            % N
M_al = F * L_al;               % N·m
sigma_al = M_al .* y_al ./ I_al;   % Pa

% CFRP sandwich stress: sigma = M / (b * h_f * t_face)
M_cf    = F * L_cf;
sigma_cf = M_cf ./ (b_cf * h_f * t_face);  % Pa

% Young's modulus: E = sigma/epsilon  (1 kg load, tension)
E_Al  = sigma_al(2) / al_strain_T(2);  % ≈ 84 GPa
E_CFRP = sigma_cf(2) / hc_strain_T(2); % ≈ 74 GPa
Full script — Lab2_Main.m
Full script — Lab2_Main_stress_strain.m
Resistance measurement data tables

← Back to Structures & Instrumentation Labs